home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today - The Disc! 5
/
CD-ROM Today - The Disc (Issue 5)(November 1994).ISO
/
mac
/
Mac shareware
/
Education
/
RLaB
/
rlib
/
int2str.r
< prev
next >
Wrap
Text File
|
1994-09-21
|
373b
|
20 lines
//-------------------------------------------------------------------
//
// int2str
//
// Syntax: s = int2str(n)
//
// This routine converts the integer n to a string which
// is returned.
//
// Original Author: Jeff Layton
//-------------------------------------------------------------------
int2str = function(n)
{
local(s);
sprintf(s,"%.0f",n);
return s;
};